home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': '',
- 'Copyright': '',
- 'Description': ''
- }
-
- def Preset_Tiles():
- return {
- 'Ambience': 0,
- 'Angle': 315,
- 'BorderSize': 2,
- 'Color': (255,255,255),
- 'Depth': 3,
- 'Elevation': 30,
- 'Intensity': 50,
- 'Shininess': 50,
- 'Smoothness': 23,
- 'TileAngularity': 0,
- 'TileShape': App.Constants.TileShape.Hexagon,
- 'TileSize': 15
- }
-
- def Do(Environment):
- App.Do(Environment, 'Tiles', Preset_Tiles())
-
-